home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00003_Script_scene4 setUP < prev    next >
Text File  |  1999-03-01  |  866b  |  36 lines

  1. --FRAME: scene4 setUP
  2. on enterframe
  3.   
  4.   if the puppet of sprite 97 = TRUE then
  5.     puppetSprite 97, FALSE -- the rewind button coming from scene2
  6.     set the loc of sprite(97) = point(1000, 1000)
  7.     updateStage
  8.   else if the puppet of sprite 97 = FALSE then
  9.     puppetSprite 97, FALSE -- the rewind button coming from scene2
  10.     set the loc of sprite(97) = point(1000, 1000)
  11.     updateStage
  12.   end if
  13.     
  14.   if the puppet of Sprite 95  = FALSE then
  15.     puppetSprite 95, TRUE -- the rewind button
  16.     set the loc of sprite(95) = point(93, 19)
  17.     set the blend of sprite 95 = 0
  18.   end if
  19.   
  20.   if the puppet of Sprite 96 = FALSE then
  21.     puppetSprite 96, TRUE -- the stop button
  22.     set the loc of sprite(96) = point(322, 19)
  23.     set the blend of sprite 96 = 0
  24.   end if  
  25.   
  26.   
  27.   
  28.   
  29.   
  30. end
  31.  
  32.  
  33. on exitFrame
  34.   go to the frame +1
  35.   
  36. end